home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / rpg / crossfir.001 / crossfir~ / eutl / xfile / Makefile < prev    next >
Makefile  |  1994-09-19  |  294b  |  21 lines

  1. LIBFILES= xfile.o 
  2. CC=gcc
  3. CFLAGS=-g -I../include
  4.  
  5. clean:
  6.     -rm *.o test1 test1.o core *\~
  7.  
  8. arlib: $(LIBFILES)
  9.  
  10. check: dotest1
  11.  
  12. test1: test1.o $(LIBFILES)
  13.     $(CC) $(CFLAGS) -o test1 xfile.o test1.o -L.. -leutl
  14.  
  15. dotest1: test1 FORCE
  16.     @echo "Running Test 1"
  17.     @./test1
  18.     @echo "Test 1 passed"
  19.  
  20. FORCE:
  21.